home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2010 April / PCWorld0410.iso / hity wydania / Ubuntu 9.10 PL / karmelkowy-koliberek-desktop-9.10-i386-PL.iso / casper / filesystem.squashfs / var / lib / dpkg / info / time.postinst < prev    next >
Text File  |  2008-11-05  |  851b  |  37 lines

  1. #!/bin/sh
  2. #
  3. # This is the postinst script for the Debian GNU/Linux time package
  4. #
  5. # Written by Dirk Eddelbuettel <edd@debian.org>   
  6.  
  7. set -e 
  8.  
  9. # Automatically added by dh_installdocs
  10. if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then
  11.     install-docs -i /usr/share/doc-base/time
  12. fi
  13. # End automatically added section
  14. # Automatically added by dh_installdocs
  15. if [ "$1" = configure ] && which install-docs >/dev/null 2>&1; then
  16.     install-docs -i /usr/share/doc-base/time
  17. fi
  18. # End automatically added section
  19.  
  20.  
  21. case "$1" in
  22.     configure)
  23.     install-info --quiet --section "General commands" "General commands:" \
  24.         --description="A utility to time the execution of a command" time.info.gz
  25.     #
  26.     ;;
  27.     abort-upgrade|abort-remove|abort-deconfigure)
  28.     exit 0
  29.     ;;
  30.     *)
  31.     echo "postinst called with unknown argument \`$1'" >&2
  32.     exit 0
  33.     ;;
  34. esac
  35.  
  36.  
  37.